/* Three typefaces, three jobs. Never mix the roles.
   The Huntley  -> primary headlines (always lowercase, tight leading)
   Mission Peak -> eyebrows, subheads, secondary headlines, button labels
   Emy Slab     -> body copy (Light is the default weight) */
:root{
  --font-display:"The Huntley", Georgia, serif;
  --font-eyebrow:"Mission Peak", Georgia, serif;
  --font-body:"Emy Slab", Georgia, serif;

  /* Headline scale (desktop px, as shipped) */
  --text-h1:80px;
  --text-h2:52px;
  --text-h3:48px;
  --text-h4:38px;
  --text-h5:28px;
  --text-h6:24px;

  /* Body scale */
  --text-bxl:22px;
  --text-blg:20px;
  --text-bmd:18px;
  --text-bsm:16px;
  --text-bxs:14px;
  --text-bxxs:12px;
  --text-bxxxs:10px;

  /* Leading — Huntley runs tight, Emy Slab runs open */
  --leading-display:0.9;
  --leading-tight:1.25;
  --leading-body:1.8;
  --leading-relaxed:1.625;

  /* Tracking */
  --tracking-tighter:-0.05em;
  --tracking-tight:-0.025em;
  --tracking-normal:0;
  --tracking-wide:0.025em;
  --tracking-widest:0.1em;

  --weight-light:300;
  --weight-regular:400;
  --weight-semibold:600;
}
