/* Shared font-face declarations, loaded on every page via includes/header.php.
   This makes the navbar (and anything else using var(--font-display)) render
   with the actual ITC Avant Garde Gothic file instead of falling back to a
   system font, since the browser doesn't have it installed locally. */
@font-face {
  font-family: 'ITC Avant Garde';
  src: url('../../fonts/ITC-Avant-Garde-Gothic-CE-Book.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ITC Avant Garde';
  src: url('../../fonts/ITC-Avant-Garde-Gothic-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ITC Avant Garde';
  src: url('../../fonts/ITC-Avant-Garde-Gothic-CE-Demi.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* TT Fors Trial — body/content font used everywhere except the navbar.
   Both weights are registered under the same family name so that any
   existing `font-weight` value (400/500/600...) automatically resolves
   to the closest matching file below. */
@font-face{
  font-family:'TT Fors Trial';
  src:url('../../fonts/TT-Fors-Trial-Regular-BF668e7530e0cc1.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'TT Fors Trial';
  src:url('../../fonts/TT-Fors-Trial-Medium-BF668e75303c5f0.ttf') format('truetype');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

