/* Maru typography — geometric display (Jost) + humanist body (Work Sans)
   + editorial serif accent (Newsreader) + numeric mono (DM Mono). */
:root{
  --font-display:'Jost',system-ui,sans-serif;   /* wordmark, headings, all-caps labels */
  --font-sans:'Work Sans',system-ui,sans-serif;  /* body & UI */
  --font-serif:'Newsreader',Georgia,serif;       /* editorial pull-quotes, menu prose */
  --font-mono:'DM Mono',ui-monospace,monospace;  /* prices, order numbers, receipts */

  /* Type scale */
  --text-2xs:0.6875rem; /* 11px — micro labels */
  --text-xs:0.75rem;    /* 12 */
  --text-sm:0.8125rem;  /* 13 */
  --text-base:0.9375rem;/* 15 — UI base */
  --text-md:1.0625rem;  /* 17 — body */
  --text-lg:1.375rem;   /* 22 */
  --text-xl:1.75rem;    /* 28 */
  --text-2xl:2.25rem;   /* 36 */
  --text-3xl:3rem;      /* 48 */
  --text-4xl:4rem;      /* 64 */
  --text-5xl:5.5rem;    /* 88 */
  --text-6xl:7.5rem;    /* 120 — hero wordmark */

  /* Weights */
  --weight-light:300;
  --weight-regular:400;
  --weight-medium:500;
  --weight-semibold:600;

  /* Line heights */
  --leading-none:1;
  --leading-tight:1.12;
  --leading-snug:1.3;
  --leading-normal:1.55;
  --leading-relaxed:1.7;

  /* Letter-spacing — the brand leans on wide tracking for all-caps labels */
  --tracking-tight:-0.01em;
  --tracking-normal:0;
  --tracking-wide:0.08em;
  --tracking-wider:0.18em;
  --tracking-widest:0.34em; /* matches the wordmark / tagline spacing */
}
