/*
 * @jagtech/brand — base tokens
 * Surface-agnostic primitives shared by every property and every surface
 * (dark web pages, light print collateral, future SupportXTM pages).
 *
 * Do NOT put color values in this file — colors are surface-specific and
 * live in surface-dark.css / surface-light.css. This file is type, radius,
 * spacing, and layout scale only.
 *
 * Source of truth extracted 2026-08-30 from jagtech-landing.html + jagtech-card.html.
 * Any change here must be made ONCE and propagated by re-importing this file
 * everywhere — do not hand-copy these values into a new site or SVG again.
 */
:root {
  /* Type families */
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --ff-mono:  'JetBrains Mono', monospace;

  /* Radius scale */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Layout scale (web) */
  --max-w: 1120px;
  --nav-h: 64px;
}
