/* fonts.css
   The two brand faces, served from assets/fonts/ instead of Google.
   Part of The 12-Point Retirement Checkup - Heritage Edition.

   Both files are variable fonts, so one file covers every weight the
   design uses - and Fraunces brings its SOFT and WONK axes with it,
   which the headline settings in base.css rely on.

   Loaded AFTER the Google <link> on purpose. When the CDN is reachable
   both resolve and this one wins; when it is not, this one is all there
   is. An advisor who copies the folder onto their own host gets working
   type without depending on anything outside it.

   Note: browsers refuse to load fonts over file:// . Open the folder
   through a local server and the faces appear. See README.md. */

@font-face{
  font-family:"Fraunces";
  src:url("../fonts/Fraunces.ttf") format("truetype-variations"),
      url("../fonts/Fraunces.ttf") format("truetype");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Libre Franklin";
  src:url("../fonts/LibreFranklin.ttf") format("truetype-variations"),
      url("../fonts/LibreFranklin.ttf") format("truetype");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
