/*
  HowOldToday.net — Self-hosted Font Strategy
  Primary: Google Fonts loaded async (non-blocking)
  Fallback: System font stack (works immediately, zero FOIT)
*/

/* System font stack that closely matches Plus Jakarta Sans */
:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont,
               'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
               'Apple Color Emoji', 'Segoe UI Emoji';
  --font-serif: 'DM Serif Display', 'Georgia', 'Times New Roman', serif;
}

body { font-family: var(--font-sans); }
.display, h1 .display { font-family: var(--font-serif); }
