/* BienFest 2026 — Typography tokens
   Three exclusive voices (from "Sistema Tipográfico BienFest"):
     Fiorina    → emotion / editorial (35%): wordmark, hero, H1, quotes
     Avenir Next→ body / reading (50%)  [substitute: Mulish]
     Futura     → structure / UI / data (15%) [substitute: Jost]
   Never cross zones: Fiorina never long body, Avenir never hero, Futura never emotional title. */
:root{
  /* ---- Font families ---- */
  --font-grande: "Fiorina Grande", Georgia, serif;      /* hero XL, chromatic display 60px+ */
  --font-title: "Fiorina Title", Georgia, serif;         /* wordmark, H1, headers 24–60px */
  --font-subhead: "Fiorina Subhead", Georgia, serif;     /* subtitles, quotes 14–24px */
  --font-text: "Fiorina Text", Georgia, serif;           /* rare small editorial 9–14px */
  --font-body: "Avenir Next", -apple-system, system-ui, sans-serif; /* body — real licensed face */
  --font-structure: "Futura", "Century Gothic", sans-serif;         /* UI, data, kickers — real face */
  --font-structure-condensed: "Futura Condensed", "Futura", sans-serif;

  /* ---- Type scale (px) ---- */
  --fs-hero: 76px;
  --fs-display: 56px;
  --fs-h1: 44px;
  --fs-h2: 34px;
  --fs-h3: 26px;
  --fs-subhead: 20px;
  --fs-lead: 19px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-caption: 12px;
  --fs-kicker: 12px;

  /* ---- Line heights ---- */
  --lh-tight: 1.05;    /* @kind font */
  --lh-title: 1.15;    /* @kind font */
  --lh-snug: 1.35;     /* @kind font */
  --lh-body: 1.62;     /* @kind font */
  --lh-relaxed: 1.75;  /* @kind font */

  /* ---- Weights ---- */
  --fw-regular: 400;   /* @kind font */
  --fw-medium: 500;    /* @kind font */
  --fw-semibold: 600;  /* @kind font */
  --fw-bold: 700;      /* @kind font */
  --fw-black: 900;     /* @kind font */

  /* ---- Tracking ---- */
  --tracking-kicker: 0.22em;   /* @kind font */
  --tracking-caps: 0.14em;     /* @kind font */
  --tracking-normal: 0;        /* @kind font */
  --tracking-title: -0.01em;   /* @kind font */
}
