/**
 * WebXtrm Widgets — Font Stack
 *
 * WordPress.org guidelines prohibit loading from external CDNs (e.g. Google Fonts).
 * This file provides a clean cross-platform font fallback chain that uses Inter
 * when available (via theme, OS, or another plugin), and gracefully falls back
 * to native system fonts otherwise.
 *
 * The widget CSS files declare `font-family: 'Inter', sans-serif;` — the browser
 * resolves 'Inter' if present, else uses the chain extended below.
 *
 * For users who want exact visual parity with the demo, install Inter system-wide
 * or via a separate font plugin.
 */

/* Apply fallback chain to all widget elements that declare Inter */
[class*="wx-"] {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
