/* Load Urbanist from Google Fonts — must stay as the very first line in the CSS box */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');

/* Apply it everywhere, overriding Zoho's built-in theme font */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, div, li,
button, input, select, textarea {
  font-family: 'Urbanist', sans-serif !important;
}

css
/* Hide the duplicate brand name next to the logo */
.Header__brand .Header__brandName {
  display: none;
}

/* Hide "Powered by Zoho Desk" footer branding */
.Footer__footer {
  display: none;
}

