GUIStyle.font

var font : Font

Description

The font to use for rendering. If null, the default font for the current GUISkin is used instead.

JavaScript
// Prints name of the font that customStyles[0] is using

function OnGUI() {
if(GUI.skin.customStyles.Length > 0)
Debug.Log("Font name: " + GUI.skin.customStyles[0].font.name);
}