How to change the font and color of the price on the front page

Hi,

You can change colors in WordPress > Appearance > Customize > Colors > Primary Color. If you want to target only the price, you can do that with CSS tweaks.

.hp-listing__attributes--primary .hp-listing__attribute--price {
    color: red !important;
}

You can change the font in WordPress > Appearance > Customize > Fonts.

Hope this helps