/* ============================================================
   TRES elementos — Typography tokens
   Two-voice system:
     - Acumin Pro: all-caps, wide-tracked, structural (labels, nav, body)
     - Swear Display Italic: lowercase script, used ONLY as an accent word
       (mirrors the logotype's "elementos" treatment — never for full sentences)
   ============================================================ */

:root {
  --font-sans: 'Acumin Pro', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Swear Display', 'Brush Script MT', cursive;

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 20px;
  --text-lg: 28px;
  --text-xl: 40px;
  --text-2xl: 56px;
  --text-3xl: 84px;
  --text-4xl: 120px;

  /* Tracking — Acumin caps carry wide brand tracking */
  --tracking-tight: 0;
  --tracking-label: 0.08em;
  --tracking-wide: 0.18em;
  --tracking-display: 0.02em;

  /* Line height */
  --leading-tight: 1.05;
  --leading-normal: 1.4;
  --leading-loose: 1.7;
}
