Filters the Google fonts.
You can either remove or add missing google fonts, or pass a list of selected fonts only.
Arguments:
- $fonts: Array list of Google fonts
add_filter('safi_google_fonts', function ($fonts) {
//Add custom font in the beginning of the list
array_unshift($fonts, 'Custom Google Font');
return ($fonts);
});