/* ================================================================
   boraADS — Typography tokens (font families)
   Two registers of one voice: sans for prose, mono for every digit.
   Type SIZES live in components.css / component classes — the system
   is denser than mainstream web on purpose (13px body, not 16px).
   ================================================================ */
:root {
  --font-host-grotesk: "Host Grotesk Variable", "Host Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-geist-mono: "Geist Mono Variable", "Geist Mono", ui-monospace, SFMono-Regular, "JetBrains Mono", Menlo, monospace;
  /* aliases legados (DS / adherence) */
  --font-geist-sans: var(--font-host-grotesk);

  /* Semantic aliases used across component classes */
  --font-sans: var(--font-host-grotesk);
  --font-mono: var(--font-geist-mono);
  --font-heading: var(--font-host-grotesk);
}
