Нашел решение, кому пригодиться.
находим файл в шаблоне styles.php
ищем такую строчку
// Merged google fonts
if ( count( $gfonts ) > 0 ):
wp_enqueue_style( 'verbosa-googlefonts', '//fonts.googleapis.com/css?family=' . implode( "|" , array_unique( array_merge( $roots, $gfonts ) ) ), null, _CRYOUT_THEME_VERSION );
endif;
и ставим вместо 0, 10 и получаем
получаем такую сточку
// Merged google fonts
if ( count( $gfonts ) > 10 ):
wp_enqueue_style( 'verbosa-googlefonts', '//fonts.googleapis.com/css?family=' . implode( "|" , array_unique( array_merge( $roots, $gfonts ) ) ), null, _CRYOUT_THEME_VERSION );
endif;
Всем удачи