/*!
 * fonts-poppins.css — self-hosted Poppins 400, for the header CTA button and the burger menu.
 *
 * WHY THIS IS SELF-HOSTED RATHER THAN ENQUEUED FROM ELEMENTOR'S CACHE
 * -------------------------------------------------------------------
 * Poppins used to come from wp-content/uploads/elementor/google-fonts/css/poppins.css, which
 * Elementor generates lazily — it only (re)creates a font's CSS and woff2 files when it renders
 * a document that requests that font.
 *
 * After the Elementor Pro removal, the only thing asking for Poppins is header-21.css, and that
 * is no longer an Elementor document. So Elementor will never regenerate this font again: one
 * click of Elementor → Tools → "Regenerate Files & Data", or a host wiping uploads/elementor/,
 * deletes it permanently. The enqueue was `file_exists()`-guarded, so it would have failed
 * SILENTLY — the header button and every burger item would just drop to generic sans-serif.
 *
 * Copying the two faces into the theme makes the chrome self-contained: it survives a
 * regenerate, a staging clone, and an uploads wipe, and it adds no third-party request (which
 * matters for the consent/GPC posture — see docs/developer/runbooks/analytics-exclusion.md).
 *
 * Scope is deliberately minimal. Only weight 400 / normal is referenced anywhere in the
 * captured Elementor CSS (`grep font-weight header-21.css footer-17.css` → 400 only, and
 * footer-17.css has no Poppins at all), and only the latin + latin-ext subsets are reachable
 * for this site's content. Elementor's cached poppins.css was 23KB across every weight,
 * style and script; this is 13.5KB of woff2.
 *
 * Source: the exact files Elementor had cached, captured 2026-08-06. Poppins is OFL-licensed,
 * so self-hosting is permitted.
 *
 * Loaded only when Elementor Pro is inactive; see includes/mileslandsurveying-pro-fallback.php.
 */

/* latin-ext */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../../fonts/poppins-400-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../../fonts/poppins-400-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
