/*
 * Inter -- self-hosted platform typeface.
 *
 * Served as .css (not .font like the old lora.font) so the host returns
 * text/css. Pages here that declare a doctype run in standards mode, where a
 * browser refuses a stylesheet whose Content-Type is not text/css, and no
 * .htaccess in this repo maps the .font extension.
 *
 * The src URLs are relative to this file, so they resolve to fonts/ wherever
 * the platform is mounted. Reference it from a page with:
 *
 *     <link href="fonts/inter.css" rel="stylesheet">
 *     ... font-family:Inter,Arial,Helvetica,sans-serif
 *
 * Email is a different story: mail clients do not fetch a linked stylesheet,
 * so newsletter wrappings inline their own @font-face block with absolute
 * https://theassociationpartner.com/esource/fonts/... URLs.
 *
 * Only 400/600/700 are shipped. Asking for 800 gets synthetic bold in most
 * browsers; use 700 instead.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('Inter-Bold.woff2') format('woff2');
}
