add_filter( 'wpex_get_font_family_stack', function( $font_family, $stack ) {
if ( 'your-font' == $font_family ) {
$stack = 'sans-serif';
}
return $stack;
}, 10, 2 );
Snippets: Define Font Family Stack
All PHP snippets should be added via a child theme's functions.php file or via the Code Snippets Plugin (or alternative plugin)