/* Platform UI fonts for server-rendered pages (auth/login) that load plain
   static CSS instead of the webpack bundle.

   Fonts are self-hosted under their REAL family names so Platform Settings
   → Typography can flip between them at runtime (BrandingProvider writes
   the chosen stack onto --font-family). The default below is Exo 2; the
   browser only downloads whichever family is actually used. To add a font:
   drop its woff2 in /static/fonts/, add @font-face blocks here + the two
   SPA typography.prefix.css files, and list it in the settings picker. */
:root {
  --font-family: "Exo 2", "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@font-face {
  font-family: "Exo 2";
  src: url("/static/fonts/Exo2-400.bc006d0366ea.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Exo 2";
  src: url("/static/fonts/Exo2-500.cf06bf8fb873.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Exo 2";
  src: url("/static/fonts/Exo2-600.e5f13258dcb3.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Exo 2";
  src: url("/static/fonts/Exo2-700.548bfb0f508e.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-400.da03732a27e1.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-600.2ede57db1a3a.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
