/* CAMP - self-hosted webfonts.
   The Webflow export loaded both families from Google at runtime through
   webfont.js; they are served from the template instead, so a page makes
   no third-party request.  Anton is a single-weight display face -- the
   export asked for five weights and Google only ever answered with 400,
   so bold Anton is the browser's synthetic bold here exactly as it was
   on the published site.  Geist is Google's variable file and covers
   300-700 from one binary. */

@font-face {
  font-family: 'Anton';
  src: url('Anton.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('Geist.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
