/* H&CO Strategy — webfonts.
   The brand ships three proprietary faces (WiredDisplay / BreveText / Apercu).
   Because those files are not distributable, this system aliases them to the
   Google-Fonts substitutes documented in the brief:
     WiredDisplay  → Playfair Display (didone, high-contrast serif)
     BreveText     → Lora            (humanist body serif)
     Apercu        → Inter           (humanist sans)
   Consumers can drop real font files into ./assets/fonts and swap the @font-face
   src lines below without touching any token / component code. */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Lora:ital,wght@0,400;0,500;0,700;1,400&family=Inter:wght@400;500;700&display=swap");

/* Public aliases — components reference these names, not the Google names. */
@font-face {
  font-family: "HCO Display";
  src: local("Playfair Display"), local("PlayfairDisplay-Regular");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HCO Serif";
  src: local("Lora"), local("Lora-Regular");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HCO Serif";
  src: local("Lora Italic"), local("Lora-Italic");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "HCO Sans";
  src: local("Inter"), local("Inter-Regular");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
