Hello,
Try to add the following PHP code snippet to the child theme functions.php file to fix this. You need to replace https://yourURL.test/wp-content/themes/woodmart/fonts/woodmart-font.woff?v=5.2.0
with your specific font URL.
function dns_prefetch_mobile() {
echo "<link href='https://yourURL.test/wp-content/themes/woodmart/fonts/woodmart-font.woff?v=5.2.0' rel='preload' as='font' type='font/woff' crossorigin='anonymous'>";
}
add_action( 'wp_head', 'dns_prefetch_mobile', 0 );
Regards