Hellow! Mr.Porlasrutasdelmundo.
I’m not native same you!
I try to use WP Google Fonts Plugin. so as you said nothing changes.
So i did directly use google font.
1)access https://www.google.com/fonts/
2)choose font “Permanent Marker” input top left
3)displayed font “Permanent Marker”
4)you can faind “Quick-use” below demo font.
5)Click “Quick-use”
6)Next to “3. Add this code to your website:”
7)sellect import tab
8)code display: @import url(https://fonts.googleapis.com/css?family=Permanent+Marker);
9)this code paste your css, and change font-family: ‘Permanent Marker’, cursive;
10)like bellow(i use child css)
/*
Theme Name: Supernova Child
Template: supernova
*/
@import url("../supernova/style.css");
/* =Basic structure
-------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Permanent+Marker);
/* font-familyの変更 */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,fieldset, form,
label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header,
hgroup, menu, nav, section, summary, time, mark, audio, video {
font-family: 'Permanent Marker', cursive;
text-transform: none;
}
so just i am able to change title font to ‘Permanent Marker’
bye!