/* ============================================================
   FONTS
   SF Pro is Apple's proprietary system font and cannot be redistributed.
   On macOS / iOS / Safari, `system-ui` + `-apple-system` resolve to the
   REAL SF Pro Display / SF Pro Text automatically — so we lead with those.
   Inter (loaded below) is the cross-platform fallback for everyone else;
   it is the closest open-source match to SF Pro's proportions.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Lead with the system font so Apple platforms get real SF Pro,
     then Inter as the universal fallback. */
  --font-display: 'SF Pro Display', system-ui, -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-text:    'SF Pro Text', system-ui, -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
