Drupal - Accessing Additional User Profile Fields
I think I found it. There is one additional step it seems.
global $user;
$user_full = user_load($user->uid); // user_load(uid) returns the complete array
var_dump($user_full);
I now have access to my custom profile fields through $user_full