/* ============================================================
   FONTS
   ------------------------------------------------------------
   The brand's two proprietary faces are UberMove (display, 700)
   and UberMoveText (body/button/link, 400/500). They are not
   redistributable, so this system substitutes Inter — the
   spec's recommended open-source match (geometric width,
   matching x-height). ss01 is enabled on the display face to
   pull the single-story 'a'/'g' closer to UberMove.

   >>> SUBSTITUTION FLAGGED: swap these @font-face srcs for the
       real UberMove / UberMoveText woff2 files when available.
   ============================================================ */

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

:root {
  /* Display face — UberMove 700 → Inter 700 + ss01 */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Text face — UberMoveText 400/500 → Inter 400/500 */
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Feature settings that bring Inter closest to UberMove geometry */
  --font-display-features: 'ss01' 1, 'cv01' 1;
}
