/* For Google Fonts, strongly recommend use of: https://google-webfonts-helper.herokuapp.com/fonts */

/* 1. Upload the .woff and .woff2 fonts to your theme folder /fonts/ */
/* 2. Generate CSS for "Modern Browsers" and paste it here */
/* 3. Add a font-display property each @font-face: https://css-tricks.com/almanac/properties/f/font-display/ */
/* 4. Preload your most commonly used .woff2 file in functions.php */

/* font-display: swap favors a FOUT (Flash of Unstyled Text); it requests the browser use a fallback font until our font loads */
/* font-display: optional favors a FOIT (Flash of Invisible Text); it hides text, but quickly decides whether to allow our font to load */

/* red-hat-display-regular - latin */
@font-face {
	font-family: 'Red Hat Display';
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/red-hat-display-v14-latin-regular.woff2') format('woff2');
	font-display: swap;
}

/* red-hat-display-italic - latin */
@font-face {
	font-family: 'Red Hat Display';
	font-weight: 400;
	font-style: italic;
	src: url('../fonts/red-hat-display-v14-latin-italic.woff2') format('woff2');
	font-display: swap;
}

/* red-hat-display-500 - latin */
@font-face {
	font-family: 'Red Hat Display';
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/red-hat-display-v14-latin-500.woff2') format('woff2');
	font-display: swap;
}

/* red-hat-display-700 - latin */
@font-face {
	font-family: 'Red Hat Display';
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/red-hat-display-v14-latin-700.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
/* red-hat-display-900 - latin */
@font-face {
	font-family: 'Red Hat Display';
	src: url('../fonts/RedHatDisplay-Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* red-hat-display-800 - latin */
@font-face {
	font-family: 'Red Hat Display';
	src: url('../fonts/RedHatDisplay-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
