/*!
 * PRANA — font loading
 *
 * The two brand typefaces are self-hosted from assets/fonts/. Both are licensed under the
 * SIL Open Font License, which permits self-hosting; the licence text for each family sits
 * beside the binaries.
 *
 * These are VARIABLE fonts: one file per family and style covers the whole weight range the
 * design uses. Four files replace the seven static weights the previous site loaded, and no
 * page view makes a third-party request.
 *
 * The filenames below must match the files actually present in ../fonts/. If you swap them,
 * change both.
 *
 * To serve the same two families from Google Fonts instead, set PRANA_LOCAL_FONTS to false
 * in functions.php. The design is identical either way.
 */

@font-face{
  font-family:"Cormorant Garamond";
  font-style:normal;
  font-weight:300 700;
  font-display:swap;
  src:url("../fonts/cormorant-garamond-variable.woff2") format("woff2-variations"),
      url("../fonts/cormorant-garamond-variable.woff2") format("woff2");
}
@font-face{
  font-family:"Cormorant Garamond";
  font-style:italic;
  font-weight:300 700;
  font-display:swap;
  src:url("../fonts/cormorant-garamond-italic-variable.woff2") format("woff2-variations"),
      url("../fonts/cormorant-garamond-italic-variable.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url("../fonts/inter-variable.woff2") format("woff2-variations"),
      url("../fonts/inter-variable.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:italic;
  font-weight:100 900;
  font-display:swap;
  src:url("../fonts/inter-italic-variable.woff2") format("woff2-variations"),
      url("../fonts/inter-italic-variable.woff2") format("woff2");
}
