/* Fonts: Anton (display), Inter (sans), JetBrains Mono (mono) — same Google families the app loads via next/font */
/* Google Fonts @import removed for GDPR — the same families are self-hosted
   in assets/fonts/fonts.css, which every page loads before this file. */
:root{
--font-sans:'Inter',system-ui,sans-serif;
--font-display:'Anton',sans-serif;
--font-mono:'JetBrains Mono',monospace;
--tracking-eyebrow:0.12em;
/* Recurring type recipes (from component code) */
--text-eyebrow:600 10px/1 var(--font-mono);/* + uppercase + tracking-eyebrow */
--text-display-hero:400 48px/0.95 var(--font-display);/* PageHero h1, uppercase */
--text-display-section:400 20px/1 var(--font-display);/* SectionHeader h2, uppercase */
--text-display-kpi:400 36px/1 var(--font-display);/* KpiCard value, tabular-nums */
}
