/* =========================================
   Global Acme Font (Local Webfont)
   ========================================= */

/* Light (300) */
@font-face {
	font-family: 'Acme';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/acme-light.woff2') format('woff2');
	font-display: swap;
}

/* Regular (400) */
@font-face {
	font-family: 'Acme';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/acme-regular.woff2') format('woff2');
	font-display: swap;
}

/* Medium (500) */
@font-face {
	font-family: 'Acme';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/acme-Medium-v1.woff2') format('woff2');
	font-display: swap;
}

/* Bold (700) */
@font-face {
	font-family: 'Acme';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/acme-bold.woff2') format('woff2');
	font-display: swap;
}

/* Force Acme as primary font across the site */
html,
body {
	font-family: 'Acme', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}