How do you change font for new GUI system in unity?

I can’t find anywhere to swap out to any font other than the default. Google just comes up with 5 million posts about how to change font size (people actually ask this?).

Can’t test this but try this:

using UnityEngine.UI;


public Text MyText;
public Font MyFont;

// then where you want to set it
MyText.font = MyFont;

Just click the button to the right of the MyFont setting to pick the font you want to change it to, you probably want more than one but hopefully that should work. Not got access to Unity so can’t test it.