/* ==========================================================================
   Typefaces — Suncoast Shopping Network

   Fraunces         → display headings, logo wordmark
   DM Sans          → body copy, UI, forms
   Barlow Condensed → the big uppercase hero headline

   Currently loaded from Google Fonts. To self-host instead:
     1. Download the families from https://fonts.google.com
     2. Drop the .woff2 files next to this file (assets/fonts/)
     3. Delete the @import below and uncomment the @font-face blocks
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=DM+Sans:wght@400;500;600;700&family=Barlow+Condensed:wght@700;800;900&display=swap');

/* --- Self-hosted alternative -------------------------------------------- */
/*
@font-face {
  font-family: 'Fraunces';
  src: url('./fraunces-variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./dm-sans-variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('./barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('./barlow-condensed-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
*/
