/* Maximus — Fonts
   The Flutter app ships NO custom font: it uses the platform default
   (SF Pro on iOS — as seen in the source screenshots — Roboto on Android).
   We therefore declare a native system font stack rather than a webfont, so
   recreations match the real product on Apple hardware. No @font-face needed.

   If a webfont is ever required for cross-platform consistency, the closest
   Google Fonts match is "Inter" (metrics) — but prefer the system stack. */

:root {
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Segoe UI", Roboto, system-ui, sans-serif;
  --font-sans: var(--font-system);
}
