Error in PSI

Hello CP Community,
I ran a new install of CP through PSI and got this error:


It says “…fonts/source-sans-pro-v12-latin-regular.woff2:1:0…”
I haven’t added these fonts, were they are supposed to be supplied or are they missing?
Thank you.

Those font files are on the repository.

Try reinstalling the theme.

Thank you!
I am using a child theme. I switched to the parent theme ClassicPress, and that fixed the errors. I made the child theme and apparently missed something. Here is a screenshot of my functions.php. What else is needed?

These fonts are loaded directly in the parent theme header.php file:

It is likely the dynamic get_template_directory_uri() call is getting the root of your child theme and therefore the font files are not found.

Probably the 2 easiest ways for fix:
1/ Duplicate the font folder in your child theme
2/ Hard code the fond path to the parent theme location in a custom header.php file

Thank you!
Adding the Fonts to the Child Theme fixed the problem!