/*
 * AITCOH Fonts — @font-face only
 *
 * For standalone project outputs that ship their own page CSS and do NOT
 * link the full theme.css. Link this file BEFORE the page stylesheet:
 *
 *   <link rel="stylesheet" href="assets/brand/styles/fonts.css">
 *
 * Bundle it into the project as output/assets/brand/styles/fonts.css with
 * the font files at output/assets/brand/assets/fonts/ (same relative
 * layout as the brand source, so the ../assets/fonts/ paths below work
 * unchanged). Pages that use the full brand system should link theme.css
 * instead — typography.css already declares these same faces.
 *
 * Note: the actual files are "Source Sans 3" (the 2021 rename of the
 * Source Sans Pro family). The brand still calls the family
 * "Source Sans Pro" — we expose it under that name in CSS so the brand
 * spec and the stylesheet stay aligned.
 */
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype-variations'),
       url('../assets/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('../assets/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('../assets/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('../assets/fonts/Source%20Sans%20Pro/SourceSans3-VariableFont_wght.ttf') format('truetype-variations'),
       url('../assets/fonts/Source%20Sans%20Pro/SourceSans3-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/Source%20Sans%20Pro/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('../assets/fonts/Source%20Sans%20Pro/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
