/* ============================================================
   NEWARK ACADEMY · HUMANITIES DESIGN SYSTEM
   tokens.css — SHARED DESIGN TOKENS (single source of truth)
   ------------------------------------------------------------
   Palette AND type live here, and ONLY here. Every page on the
   site — overview pages, lesson panels, anything else — inherits
   from this file. A brand color or a typeface is defined in one
   place; change it here and it changes everywhere at once.

   The family sheets (overview.css, lessons.css) now own ONLY
   their own components — never colors, never fonts.

   Every page must link this file FIRST, before its family sheet:
     <link rel="stylesheet" href="tokens.css">
     <link rel="stylesheet" href="overview.css">   (or lessons.css)

   Fonts are loaded once per page via Google Fonts, before this
   file. The house faces are Cormorant Garamond (display) and
   Spectral (body):
     <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Spectral:ital,wght@0,400;0,500;0,600;1,400&display=swap" rel="stylesheet">
   ============================================================ */

:root {
  /* ---- PALETTE ---------------------------------------------- */
  --ink:         #1c1a17;
  --ink-soft:    #3a342c;
  --ink-mid:     #4d4639;
  --paper:       #faf6ec;
  --paper-deep:  #f4ecd8;
  --paper-warm:  #efe6cf;
  --accent:      #7a2424;  /* oxblood — IB / primary */
  --accent-soft: #b86c5e;
  --gold:        #a87a26;  /* antique gold — AP / secondary */
  --gold-soft:   #c9a64a;
  --muted:       #6b6357;
  --rule:        #d8cfb8;
  --rule-soft:   #e8e0c9;

  /* ---- TYPE ------------------------------------------------- */
  --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body:    'Spectral', 'EB Garamond', Georgia, 'Times New Roman', serif;
}