/* ==========================================================================
   Mycelia Birth Co. — self-hosted typeface
   ==========================================================================

   Cormorant Garamond, served from our own domain instead of Google's.

   Previously every page loaded this font from fonts.googleapis.com, which
   meant Google received the IP address of every single visitor, on every
   page, before they had interacted with anything. For a site where people
   arrive to read about abortion support, bereavement care, or their own
   pregnancy, that is a meaningful thing to hand to an advertising company.
   Self-hosting removes the third party entirely — nothing about a visit
   leaves our own infrastructure.

   It is also faster: no DNS lookup, no TLS handshake, and no second
   round-trip to a different origin before the first glyph can render.

   Weights below mirror exactly what the old Google request asked for
   (300/400/500/600/700 upright, 400/500 italic), so nothing about the
   site's appearance changes. A browser only downloads the files whose
   weight and style the page actually uses, so declaring all seven costs
   nothing.
   ========================================================================== */

/* font-display: swap matches the &display=swap on the old Google URL — text
   paints immediately in Georgia and reflows once the real face arrives,
   rather than sitting invisible while the font loads. */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-300.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-400.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-700.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-400-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-500-italic.woff2") format("woff2");
}
