/* ============================================================
   FLUYIR · Webfonts
   ------------------------------------------------------------
   · Amsterdam Four  (script, logo/titles)  → self-hosted .ttf  [client-supplied]
   · Corporative     (sans, body/UI)        → Montserrat (Google) [client's favorite]
   · Editorial serif (long-form blog)        → Cormorant Garamond  [Fluyir DS addition]
   Rockwell from the brief is intentionally omitted (client rejected it).
   NOTE: @import must precede @font-face per CSS spec.
   ============================================================ */

/* Sans (Montserrat) + editorial serif (Cormorant Garamond) from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* Amsterdam Four — the real brand script, self-hosted */
@font-face {
  font-family: 'Amsterdam Four';
  src: url('../assets/fonts/amsterdam-four.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
