/**
 * Charles Wright font-face declarations.
 *
 * Used for previews rendered directly into the page DOM (the live,
 * per-keystroke AJAX-updated preview, and the initial server-rendered
 * placeholder) — these inherit @font-face declarations normally through
 * the page's own CSS cascade, exactly like any other web font, so there's
 * no need to re-embed the font data on every single preview update.
 *
 * Standalone/portable contexts that render the SVG *outside* the page DOM
 * (cart thumbnails, stored order previews used in wp-admin and emails)
 * can't rely on this — see PWC_Svg_Renderer's $embed_font render
 * argument, which base64-embeds the font directly into the SVG itself
 * for exactly those cases instead.
 *
 * @package Plate_Wizard_Configurator
 */

@font-face {
	font-family: 'Charles Wright Bold Caps';
	src: url('../fonts/CharlesWrightBoldCaps.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Charles Wright Motorcycle';
	src: url('../fonts/CharlesWrightMotorcycle.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
