/* Story Built Homes — typography tokens */
:root {
  /* Families */
  --font-display: 'Cinzel', 'Copperplate', serif;  /* HEADER FONT — matches website redesign; engraved caps, uppercase + tracked */
  --font-body: 'Gotham Rounded', 'Century Gothic', sans-serif; /* sub-headers & body */

  /* Weights */
  --weight-light: 300;
  --weight-book: 400;
  --weight-bold: 700;
  --weight-display: 600;  /* Cinzel headings render at 600 on the website */

  /* Tracking (from the website redesign):
     display headings are barely tracked; labels/nav/buttons are wide; eyebrows widest */
  --tracking-display: 0.01em;
  --tracking-subhead: 0.14em;   /* buttons, nav links, labels */
  --tracking-eyebrow: 0.28em;   /* gold section kickers */

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 19px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 44px;
  --text-4xl: 60px;

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-body: 1.6;
}
