/* ============================================================
   THE SYD — FONTS
   ------------------------------------------------------------
   Brand typefaces (Adobe Fonts, licensed — not bundled here):
     • Imperial URW Regular  — serif, used for ALL copy & display
     • Prestige Elite Std Bold — monospace typewriter, used for
       labels, taglines, unit numbers ("01 UNIT NO.")

   Imperial URW is LIVE (Karen, Aug 6 2026) — self-hosted from
   /assets/fonts/, regular weight only (bold is browser-synthesized).
   PT Serif stays in the stack as the loading/legacy fallback.

   SUBSTITUTIONS (Google Fonts, flagged to client):
     • Prestige Elite Std → "Cutive Mono" (typewriter monospace)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Cutive+Mono&display=swap');

@font-face {
  font-family: "Imperial URW";
  src: url("/assets/fonts/URW-Imperial-W01-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Alias — some pages (checkout, rates) name it "URW Imperial" */
@font-face {
  font-family: "URW Imperial";
  src: url("/assets/fonts/URW-Imperial-W01-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Base family tokens */
  --font-serif: "Imperial URW", "PT Serif", Georgia, "Times New Roman", serif;
  --font-mono:  "Cutive Mono", "Prestige Elite Std", "Courier New", monospace;

  /* Semantic roles */
  --font-display: var(--font-serif);  /* headlines, villa names, hero */
  --font-body:    var(--font-serif);  /* paragraphs, descriptions */
  --font-label:   var(--font-mono);   /* nav, eyebrows, taglines, CTAs, captions */
}
