How to change the font at GUIStyle C#

Hello there, Is that possible to change the font of text “Score” and “Lives” to Roboto?

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class MyGUI : MonoBehaviour
{
    // Start is called before the first frame update
    void OnGUI()
    {
        GUIStyle guiStyle = new GUIStyle(GUI.skin.label);
        guiStyle.normal.textColor = Color.white;
        guiStyle.fontSize = 50; //change the font size

Hello there,

This post has an answer: Set GUI font and color