/* ==========================================================================
   Dexter Martin Real Estate — Fonts
   Three-font system (do not swap roles):
     • Libre Baskerville — display / headlines / quotes / wordmark   (Google Fonts)
     • Cooper Hewitt      — subheads / callouts / stats / labels      (3rd-party CDN *)
     • Open Sans          — body / supporting / captions              (Google Fonts)

   * Cooper Hewitt is not on Google Fonts. It is loaded from a third-party
     webfont CDN below. If you have licensed .woff2 files, drop them in
     assets/fonts/ and repoint these src URLs to self-host. See README "Caveats".
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* --- Cooper Hewitt (geometric sans, named weights mapped to numeric) --- */
@font-face {
  font-family: 'Cooper Hewitt';
  font-weight: 400; /* Book */
  font-style: normal;
  font-display: swap;
  src: url('https://db.onlinewebfonts.com/t/4dc6a614f472442844b5027d983757f9.woff2') format('woff2');
}
@font-face {
  font-family: 'Cooper Hewitt';
  font-weight: 500; /* Medium */
  font-style: normal;
  font-display: swap;
  src: url('https://db.onlinewebfonts.com/t/5fecc6c9d5633486c50465814b976fc1.woff2') format('woff2');
}
@font-face {
  font-family: 'Cooper Hewitt';
  font-weight: 700; /* Bold — the primary callout weight */
  font-style: normal;
  font-display: swap;
  src: url('https://db.onlinewebfonts.com/t/4b08a3fe42a21daf6b7259770a01a135.woff2') format('woff2');
}
@font-face {
  font-family: 'Cooper Hewitt';
  font-weight: 900; /* Heavy — oversized stats / hook numbers */
  font-style: normal;
  font-display: swap;
  src: url('https://db.onlinewebfonts.com/t/0704722187831ae1fb775341c9842851.woff2') format('woff2');
}
