// 出力バッファでGoogle Fontsを完全削除（最終手段）
add_action('init', function() {
ob_start(function($html) {
// Google Fonts の<link>タグを削除
$html = preg_replace('/<link[^>]+fonts\.googleapis\.com[^>]*>/i', '', $html);
return $html;
});
});