/* ============================================================
   Azpigorri — Typography tokens
   Display: Vasca (ALL-CAPS folk display, headlines/labels only)
   Body/UI: Hanken Grotesk (neutral humanist sans)
   Accent:  Source Serif 4 (editorial — product copy, pull quotes)
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: "Vasca", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  /* ---- Weights (Vasca ships single weight 400) ---- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* ---- Type scale (fluid-friendly base 16px) ---- */
  --text-2xs: 0.6875rem;  /* 11px — eyebrow caps */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md: 1.125rem;    /* 18px */
  --text-lg: 1.375rem;    /* 22px */
  --text-xl: 1.75rem;     /* 28px */
  --text-2xl: 2.25rem;    /* 36px */
  --text-3xl: 3rem;       /* 48px */
  --text-4xl: 4rem;       /* 64px */
  --text-5xl: 5.5rem;     /* 88px */

  /* ---- Line heights ---- */
  --leading-tight: 1.04;   /* Vasca display */
  --leading-snug: 1.2;
  --leading-normal: 1.55;  /* body copy */
  --leading-relaxed: 1.7;

  /* ---- Letter spacing ---- */
  --tracking-display: 0.01em;
  --tracking-eyebrow: 0.22em;  /* Vasca eyebrows / caps labels */
  --tracking-wide: 0.04em;
  --tracking-normal: 0em;
}
