How do I stop my site reloading the fonts with a preload effect?
This is known as async typography. To remove this preloading, in your child functions.php file add:
function ghostpool_custom_async_typography() { return false; } add_filter( 'ghostpool_async_typography', 'ghostpool_custom_async_typography' );