/* Self-hosted fonts for Journalen theme: Barlow and Playfair Display */
/* Note: Font files are stored under src/global/utils/fonts and copied to dist/fonts by gulp. */
/* Barlow Regular */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow/Barlow-Regular.ttf") format("truetype");
}
/* Barlow Bold */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow/Barlow-Bold.ttf") format("truetype");
}
/* Playfair Display Regular */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/playfair-display/PlayfairDisplay-Regular.ttf") format("truetype");
}
/* Playfair Display Bold */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-display/PlayfairDisplay-Bold.ttf") format("truetype");
}