/* AITCOH landing template — self-hosted fonts, no CDN.
   Bundled copy of brand/styles/fonts.css with project-relative paths.

   Copy the font files into the project when you scaffold a page:
     mkdir -p output/assets/fonts
     cp -R "…/Brand Builder/AITCOH/brand/assets/fonts/Montserrat" output/assets/fonts/
     cp -R "…/Brand Builder/AITCOH/brand/assets/fonts/Source Sans Pro" output/assets/fonts/

   Note: the files are "Source Sans 3" (the 2021 rename of Source Sans Pro).
   The brand still calls the family "Source Sans Pro", so it is exposed under
   that name here to keep the spec and the stylesheet aligned. */

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('fonts/Source Sans Pro/SourceSans3-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/Source Sans Pro/SourceSans3-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('fonts/Source Sans Pro/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/Source Sans Pro/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}
