/* GRIN GOLF - self-hosted webfonts.

   Anton and Plus Jakarta Sans are the two the design uses; the
   export loaded both from Google at runtime through webfont.js, and
   they are served from the template instead, so a page makes no
   third-party request.

   Inter and Big Shoulders Display replace the two LICENSED families
   the export shipped as raw binaries -- Graphik (trial .otf) and
   Thunder (.ttf) -- neither of which may be redistributed in a
   template that is sold. Inter matches Graphik's neo-grotesque
   proportions and Big Shoulders Display matches Thunder's tall
   condensed display cut; both cover the full 100-900 range the
   design asks for, from one variable file each.

   Anton is a single-weight 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. The other three are Google's variable files.

   All four are SIL Open Font License 1.1. */

@font-face {
  font-family: 'Anton';
  src: url('Anton.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('PlusJakartaSans.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('Inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Big Shoulders Display';
  src: url('BigShouldersDisplay.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
