Add {{ dump(vars()) }}
to the template - that will confirm whether the data you want is available.
I suspect it will be available using {{ dump($user.Profile.custom_fields) }}
which you can then check to determine the specific field ID and values, e.g. {{ $user.Profile.custom_fields.field_id }}
.