/*
 * Thrive at Work — self-hosted fonts
 *
 * Sora (display/headings) and Manrope (body/UI), self-hosted as
 * variable WOFF2 files (each file covers its whole weight axis —
 * Google's own generated CSS serves multiple static @font-face
 * weights from the same variable file, which is what this
 * mirrors). Latin subset only: covers Latin-1 Supplement
 * (U+0000–00FF), which includes the accented characters this
 * site actually uses (e.g. "résumés").
 *
 * Only the weights the Figma audit found in use are declared:
 * Sora 600/700, Manrope 400/500/600/700. No italic styles are
 * used anywhere in the design.
 *
 * Source: Google Fonts (Sora and Manrope are both SIL Open Font
 * License — freely redistributable); self-hosting is standard
 * practice for performance and to avoid a third-party request.
 */

@font-face {
	font-family: 'Sora';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url( '../fonts/sora/sora-variable-latin.woff2' ) format( 'woff2' );
}

@font-face {
	font-family: 'Sora';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url( '../fonts/sora/sora-variable-latin.woff2' ) format( 'woff2' );
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url( '../fonts/manrope/manrope-variable-latin.woff2' ) format( 'woff2' );
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url( '../fonts/manrope/manrope-variable-latin.woff2' ) format( 'woff2' );
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url( '../fonts/manrope/manrope-variable-latin.woff2' ) format( 'woff2' );
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url( '../fonts/manrope/manrope-variable-latin.woff2' ) format( 'woff2' );
}
