/* ============================================================
   Fonts — AVOW uses Inter Tight (display/UI) and Inter (numerals).
   Both are Google Fonts, loaded via CDN @import (no local binaries).
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Family stacks */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* "mono" here is Inter with tabular + ss01 figures — used for numbers, scores, prices */
  --font-mono: "Inter", ui-sans-serif, sans-serif;

  --font-feature-ui: "ss01", "cv11";
  --font-feature-num: "tnum", "ss01";
}
