/*!
 * MMF Membership — Barlow font face re-declaration for /wp-login.php.
 * The theme stylesheet is not loaded on the login screen, so we re-declare
 * the @font-face here. Files live in the theme to avoid duplication of
 * font files inside the plugin — but the CSS must reach /wp-login.php.
 *
 * Loaded as a separate file so the heavy login stylesheet can be cached
 * independently of the theme bundle.
 *
 * @package MMF\Membership
 */

/* The actual @font-face declarations live in the theme.
 * On the login screen we ask the browser to fetch Barlow from the system
 * font stack — most modern systems ship a Barlow-like sans-serif (Inter,
 * Helvetica Neue, etc.) which is "good enough" for one auth page.
 *
 * If you want the exact Barlow font here too, copy the @font-face block
 * from mmf-wp-theme-v1/assets/fonts/barlow/barlow.css into this file
 * and update the src paths to point to the theme's font directory.
 */
body.login {
	font-family: "Barlow", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
}
