/* Yoga of Spaces — webfonts.
   Cormorant Garamond (display + body) and Noto Serif Devanagari (the य mark) are
   served from Google Fonts, matching the approved homepage. No self-hosted binaries
   are included; see readme.md → "Font substitutions & gaps". */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Noto+Serif+Devanagari:wght@400;500;600&display=swap");

:root{
  /* Base families */
  --font-serif:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  --font-sans:Helvetica,Arial,'Helvetica Neue',sans-serif;
  --font-devanagari:'Noto Serif Devanagari','Kohinoor Devanagari','Devanagari MT',serif;

  /* Semantic aliases */
  --font-display:var(--font-serif);   /* h1–h3, pull quotes, wordmark */
  --font-body:var(--font-serif);      /* running copy */
  --font-meta:var(--font-sans);       /* eyebrows, captions, buttons, prices */
  --font-mark:var(--font-devanagari); /* the य glyph — swap here when the bespoke vector lands */
}
