/* ============================================================
   FONTS — xAI Design System
   ------------------------------------------------------------
   Universal Sans (display/body) is PROPRIETARY and not shippable.
   Substitute: Inter weight 400 with tightened tracking at display.
   Mono companion: Geist Mono (the documented brand mono).
   Both loaded from Google Fonts. If you have licensed Universal
   Sans .woff2 files, drop them in assets/fonts/ and replace the
   @font-face below.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Geist+Mono:wght@400;500&display=swap');

/* Alias families so consumers can keep brand names in markup. */
:root {
  --font-display: 'Inter', 'Universal Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Universal Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'GeistMono', ui-monospace, 'SF Mono', Menlo, monospace;
}
