/* TYPOGRAPHY — Global Window & Door Mfg
   Barlow (display/headings) + Source Sans 3 (body) — inferred pairing, flagged. */
:root{
  --font-display:'Barlow','Barlow',system-ui,sans-serif;
  --font-body:'Source Sans 3',system-ui,-apple-system,sans-serif;

  /* Type scale (1.200 minor-third-ish, tuned) */
  --text-3xs:12px;
  --text-2xs:13px;
  --text-xs:14px;
  --text-sm:15px;
  --text-base:17px;
  --text-md:19px;
  --text-lg:22px;
  --text-xl:26px;
  --text-2xl:32px;
  --text-3xl:40px;
  --text-4xl:52px;
  --text-5xl:64px;
  --text-6xl:80px;

  /* Weights */
  --fw-regular:400; /* @kind font */
  --fw-medium:500; /* @kind font */
  --fw-semibold:600; /* @kind font */
  --fw-bold:700; /* @kind font */
  --fw-extrabold:800; /* @kind font */

  /* Line heights */
  --lh-tight:1.05; /* @kind font */
  --lh-snug:1.18; /* @kind font */
  --lh-heading:1.15; /* @kind font */
  --lh-body:1.6; /* @kind font */
  --lh-relaxed:1.75; /* @kind font */

  /* Letter spacing */
  --ls-tight:-0.02em; /* @kind font */
  --ls-normal:0; /* @kind font */
  --ls-wide:0.04em; /* @kind font */
  --ls-eyebrow:0.14em; /* @kind font */

  /* Semantic roles */
  --font-heading:var(--font-display);
  --font-eyebrow:var(--font-display);
}