Thanks, Christine, that worked. One thing to note for anyone reading this in the future is that I wasn’t able to get the page to use the font until I put it at the very top of the Custom CSS Manager.
I actually ended up creating a new class called casualtext and made some other changes. It was a challenge to figure out how to handle the space in the font name, but your example plus Google fonts page helped. The CSS changes I made look like this:
@import “url(https://fonts.googleapis.com/css?family=Architects+Daughter)”;
casualtext {
font-family: ‘Architects Daughter’, cursive;
font-size: 20px;
font-size: 2.0rem;
}
Thanks again for your help!