/* ============================================================
   SITC TYPOGRAPHY - one family, three weights.
   Black (900) = "Heavy" for display; SemiBold (600) for
   sub-heads, labels & emphasis; Regular (400) for body.
   Headlines are TIGHT (line-height ~0.95) and often UPPERCASE.
   ============================================================ */
:root{
  --font-sans:"Outfit",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-display:"Outfit",sans-serif;

  --weight-regular:400;
  --weight-semibold:600;
  --weight-black:900;

  /* Type scale (px, deck-scale display sizes step down for UI) */
  --text-display-xl:88px;  /* title slide headline */
  --text-display-lg:60px;  /* slide heading */
  --text-display-md:44px;
  --text-display-sm:34px;
  --text-h1:32px;
  --text-h2:24px;
  --text-h3:20px;
  --text-lg:18px;
  --text-body:16px;
  --text-sm:14px;
  --text-xs:12px;
  --text-label:12px;   /* uppercase section labels */

  --leading-tight:0.95;   /* display headlines */
  --leading-snug:1.15;
  --leading-normal:1.5;   /* body */

  --tracking-label:0.14em; /* uppercase labels & eyebrows */
  --tracking-tight:-0.01em;
}
