:root {
  /* Display face — chunky, no-curve block letters for headlines & the logotype.
     Source spec calls this "Black Pack VF" (MTM Madrid) — a paid/proprietary
     variable font, not redistributable. Substituted with Bungee (Google Fonts),
     the closest free match in weight/blockiness. Flagged in readme.md. */
  --font-display: 'Bungee', 'Arial Black', sans-serif;

  /* Body/UI face — Helvetica Neue per spec; system stack, no license to embed */
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Courier New', monospace; /* prices, order numbers */

  --weight-regular: 400;
  --weight-bold: 700;

  /* Type scale */
  --text-display-xl: 64px;   /* menu section headers: SHAWARMA, WRAPS */
  --text-display-lg: 44px;
  --text-display-md: 32px;
  --text-heading: 24px;      /* menu item names */
  --text-subheading: 18px;
  --text-body: 16px;
  --text-small: 13px;
  --text-caption: 11px;

  --leading-tight: 1.05;
  --leading-snug: 1.25;
  --leading-normal: 1.5;

  --tracking-tight: -0.01em;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em; /* all-caps display labels */
}