/* QUISO LAB — Typography.
   Three roles, each with a distinct job:
   - Michroma  → labels / kickers / technical meta. UPPERCASE, wide tracking.
   - Outfit    → display & headings. Weight 500, uppercase for hero titles.
   - Instrument Sans → body copy and UI.
   "Clareza acima de tudo" — legibility, balance, precision. */
:root{
  --font-head:'Michroma',monospace;              /* kicker / eyebrow / meta */
  --font-display:'Outfit',sans-serif;            /* headings & display */
  --font-body:'Instrument Sans',sans-serif;      /* body & UI */

  /* Type scale (px) — display sizes come from the brand deck */
  --fs-kicker:15px;      /* Michroma eyebrow */
  --fs-caption:13px;
  --fs-sm:14px;
  --fs-body:16px;
  --fs-body-lg:18px;
  --fs-lede:22px;        /* Outfit-light intro paragraph */
  --fs-h4:22px;
  --fs-h3:28px;
  --fs-h2:36px;
  --fs-h1:48px;
  --fs-display:64px;     /* hero */

  /* Weights */
  --fw-light:300;
  --fw-regular:400;
  --fw-medium:500;
  --fw-semibold:600;
  --fw-bold:700;

  /* Line heights */
  --lh-tight:1.15;
  --lh-heading:1.3;
  --lh-body:1.6;

  /* Letter-spacing — the brand tracks its Michroma labels wide */
  --ls-kicker:.2em;
  --ls-kicker-wide:.3em;
  --ls-display:.01em;
  --ls-normal:0;
}
