/*
 * Self-hosted fonts for Step by Step Counselling.
 *
 * The actual woff2 files are downloaded by running download-fonts.ps1 once
 * on the developer's Windows machine. They are NOT included in the package
 * by default , run the script before deploying for the first time, then
 * commit the resulting fonts/*.woff2 files into the repo.
 *
 * See download-fonts.ps1 in the project root.
 *
 * font-display: swap means: show fallback (system serif/sans) immediately,
 * swap to Lora/Nunito Sans when downloaded. Avoids invisible-text flash.
 */

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/lora-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/lora-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/nunito-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/nunito-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/nunito-sans-600.woff2') format('woff2');
}
