/*
 * Font format override layered on top of the verbatim Webflow CSS.
 * Adds WOFF2 (~43% smaller than the OTF the Webflow export ships) and keeps
 * the OTF as fallback for ancient browsers. Same family/weight/style as the
 * upstream @font-face blocks in minimaximal.webflow.shared.css, so this
 * declaration wins per CSS Fonts §5 (last-wins for identical descriptors).
 */

@font-face {
  font-family: Akzidenzgrotesk;
  src:
    url("/webflow/fonts/68938768f36a1ed13500eaae_AkzidenzGrotesk-Regular.woff2") format("woff2"),
    url("/webflow/fonts/68938768f36a1ed13500eaae_AkzidenzGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akzidenzgrotesk;
  src:
    url("/webflow/fonts/6893969e3d744a27aa5d87eb_AkzidenzGrotesk-Medium.woff2") format("woff2"),
    url("/webflow/fonts/6893969e3d744a27aa5d87eb_AkzidenzGrotesk-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
