/* ZABR — Typography. Three tiers: Display (Bebas Neue), Condensed (Barlow Condensed), Text (Barlow). */
:root{
  --font-display:'BebasNeue','Arial Black',sans-serif;
  --font-condensed:'BarlowCondensed','Arial Narrow',sans-serif;
  --font-body:'Barlow',Arial,sans-serif;
  --font-mono:'Menlo','Consolas',monospace;

  --text-xs:11px;  --text-sm:13px;  --text-base:15px; --text-lg:18px;
  --text-xl:24px;  --text-2xl:36px; --text-3xl:48px;  --text-4xl:64px;
  --text-5xl:96px; --text-6xl:120px;

  --weight-light:300; --weight-regular:400; --weight-medium:500;
  --weight-semibold:600; --weight-bold:700;

  --leading-tight:1.1; --leading-snug:1.3; --leading-normal:1.6; --leading-loose:1.8;

  --tracking-tight:-0.01em; --tracking-normal:0; --tracking-wide:0.05em;
  --tracking-wider:0.15em;  --tracking-widest:0.25em;

  /* Semantic type roles */
  --type-hero:var(--weight-regular) var(--text-6xl)/var(--leading-tight) var(--font-display);
  --type-h1:var(--weight-regular) var(--text-3xl)/var(--leading-tight) var(--font-display);
  --type-h2:var(--weight-regular) var(--text-2xl)/var(--leading-tight) var(--font-display);
  --type-h3:var(--weight-semibold) var(--text-xl)/var(--leading-snug) var(--font-condensed);
  --type-label:var(--weight-semibold) var(--text-xs)/1.2 var(--font-condensed);
  --type-body:var(--weight-light) var(--text-base)/var(--leading-normal) var(--font-body);
  --type-lead:var(--weight-light) var(--text-lg)/var(--leading-normal) var(--font-body);
}
