/*
 * PoppyOS — the site's only typeface.
 *
 * Plus Jakarta Sans as a variable font: one file covers weight 200–800, so headings get a
 * real 800 instead of a browser-faked bold. Served from the theme rather than Google Fonts,
 * because the optimisers running on production rewrite external font requests and lose
 * either families or weights (see poppyos_enqueue_fonts() for the full story).
 *
 * `font-display: swap` keeps text visible while the file loads; the fallback stack below
 * every rule in the theme is the system UI face, which is metrically close enough that the
 * swap does not shift lines around.
 */
@font-face {
	font-family: 'Plus Jakarta Sans';
	src: url('../fonts/plus-jakarta-sans-variable.woff2') format('woff2');
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}
