Thanks so far.
I have now used this folder as template for my child theme:
\wp-content\themes\tiny-framework\inc\examples\tiny-framework-child\
Then tested font addition:
Tip13 Remove Open Sans (and other Google Fonts) as default font.
That seems to be working, although the page still looks the same. Probably because font Verdana looks like Google’s Open Sans, right? Verdana is being used says the Firefox inspector.
Then enabled a different Google font (Tip 31) :
if ( !is_admin() ) { // If we do not want this to load in the admin dashboard
wp_register_style( 'tinyframeworkchild-fonts', 'https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i', '', '', 'screen' );
}
Unfortunately: Verdana is still being used (says Firefox inspector, and my eyes)
Hmmm? What am I missing?
Thanks for helping!