/* Delta Grand — Typography tokens
   Two families only. Albert Sans carries all display + body weight;
   Space Mono is reserved for eyebrows, labels, footers and data — always
   uppercase with 0.150em tracking. */
:root {
  /* ── Families ───────────────────────────────────── */
  --dg-font-display: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --dg-font-mono:    "Space Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* ── Weights ────────────────────────────────────── */
  --dg-w-regular:  400; /* @kind font */
  --dg-w-medium:   500; /* @kind font */
  --dg-w-semibold: 600; /* @kind font */
  --dg-w-bold:     700; /* @kind font */
  --dg-w-black:    900; /* @kind font */

  /* ── Display scale (Albert Sans, line-height 1) ─── */
  --dg-display-xl: 86px; /* hero / cover statement */
  --dg-display-l:  60px; /* poster headline */
  --dg-display-m:  50px;
  --dg-display-s:  40px;
  --dg-title:      36px;
  --dg-subtitle:   24px;
  --dg-body:       20px; /* Albert Sans body copy */
  --dg-body-s:     16px;

  /* ── Mono / label scale (Space Mono, tracked) ───── */
  --dg-mono-l:     30px;
  --dg-mono-m:     24px;
  --dg-mono:       20px; /* default eyebrow / footer */
  --dg-mono-s:     18px;
  --dg-mono-xs:    16px;

  /* ── Line heights ───────────────────────────────── */
  --dg-lh-tight:   1;    /* @kind font */
  --dg-lh-snug:    1.15; /* @kind font */
  --dg-lh-body:    1.5;  /* @kind font */

  /* ── Tracking ───────────────────────────────────── */
  --dg-track-mono: 0.150em; /* the brand's signature label tracking */
  --dg-track-wide: 0.220em;
  --dg-track-tight: -0.01em;
}
