Ummm, 'cause that's the correct syntax?
"LGDT" (and "LIDT") take a "mem" operand (not "imm"). In Nasm's syntax, "[foo]" is a memory operand, "foo" is a plain immediate number. Same idea as:
mov [foo], eax ; okay
mov foo, eax ; BZZZT!
Now, as to the contents of that memory area... best consult the Intel/AMD manual... or perhaps you already know that...
Best,
Frank