/* Ellaris self-hosted brand fonts — the ONE @font-face source for the static marketing
   pages (index/lore/game/about/changelog + the legal pages). The Vite game app injects
   the same faces via src/client/ui/theme.ts (ensureTheme). Self-hosted (not the Google
   Fonts CDN) so the look renders offline, loads faster, and makes no third-party request
   — the last point is also a GDPR win (no user IP handed to fonts.gstatic.com at runtime).

   Both files are the LATIN subset of each family's VARIABLE font (one file spans the whole
   weight axis; latin covers Basic Latin + Latin-1, i.e. German umlauts, plus the punctuation
   / arrows / currency our UI uses). Download: scripts note in docs/UI_PROFESSIONALIZATION.md. */

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/fonts/cinzel-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
}
